home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / misc / compsci / arcsgm.cpt / ARC SGML 1.0 / MPW scripts / vm2d Worksheet < prev   
Encoding:
Text File  |  1991-12-15  |  1.0 KB  |  30 lines

  1. #    Symbolic Application Debugging Environment    1.3
  2. #
  3. #    Copyright Apple Computer, Inc. 1987-1991
  4. #    All rights reserved.
  5.  
  6. ###############################################################################
  7.  
  8. Help        # Get a list of help topics; or use SADE Help menu command in Find menu.
  9.  
  10. # When you compile and link your application, specify the -sym on option to create
  11. # the file containing symbol information (.SYM) that SADE requires for debugging. 
  12.  
  13. # Identify the target application to debug and its symbol file:
  14.     Directory 'hd:SADE:SADE Tutorials:CExamples:C Tutorial 1'
  15.  
  16. # The Sourcepath command is not necessary, but may be useful if your source files 
  17. # are in multiple directories. 
  18. #        Sourcepath 'pathname1','pathname2'    
  19.  
  20.     Target 'Sample1'    # assumes symbol file is 'Sample1.SYM'
  21.  
  22. # You will see that Target not only identifies the application but launches it, opens
  23. # the source file, and breaks at the first statement of the main program.
  24.  
  25. Directory "T200R:MPW Folder:ARC SGML:"
  26.  
  27. Target "T200R:MPW Folder:MPW Shell" using "vm2.SYM"
  28.  
  29.  
  30.